home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2002 June / PC-WELT 6-2002.ISO / js / openwindow.js < prev   
Encoding:
JavaScript  |  2002-04-10  |  377 b   |  16 lines

  1. //<script language=javascript>
  2.     function openWindow(strUrl)
  3.     {
  4.         var strSettings;
  5.  
  6.         //var h=525;
  7.         //var w=780;
  8.  
  9.         strSettings = "height=525,width=780,location=no,menubar=no,resizable=yes,scrollbars=no,status=no,toolbar=no";
  10.         objWindow = window.open(strUrl, "pcwelt_mainwindow", strSettings);
  11.         
  12.         objWindow.moveTo(10, 10);
  13.         objWindow.focus();
  14.     }
  15.  
  16. //</script>